home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming in Microsoft Windows with C#
/
Programacion en Microsoft Windows con C#.iso
/
Original Code
/
Hello Windows Forms
/
ShowFormAndSleep
/
ShowFormAndSleep.cs
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-15
|
453 b
|
21 lines
//-----------------------------------------------
// ShowFormAndSleep.cs ⌐ 2001 by Charles Petzold
//-----------------------------------------------
using System.Threading;
using System.Windows.Forms;
class ShowFormAndSleep
{
public static void Main()
{
Form form = new Form();
form.Show();
Thread.Sleep(2500);
form.Text = "My First Form";
Thread.Sleep(2500);
}
}